python error [Solved][Python3] TypeError: not all arguments converted during string formatting [ 작업 환경 ] Python3 [ 문제 상황 ] TypeError: not all arguments converted during string formatting [ 문제 원인 ] result에 num값을 str로 묶어 문자열로 append(추가)넣어두었는데 아래에서 result[i]%2로 연산을 시도하려 했다가 만난 Error이다. [ 해결 방법 ] int(result[i])로 묶어보니 ... python errortypeErrorpython error
[Solved][Python3] TypeError: not all arguments converted during string formatting [ 작업 환경 ] Python3 [ 문제 상황 ] TypeError: not all arguments converted during string formatting [ 문제 원인 ] result에 num값을 str로 묶어 문자열로 append(추가)넣어두었는데 아래에서 result[i]%2로 연산을 시도하려 했다가 만난 Error이다. [ 해결 방법 ] int(result[i])로 묶어보니 ... python errortypeErrorpython error